[WebMethod(MessageName="HelloWorld")]
public string HelloWorld() {
   return "Witaj";
}

[WebMethod(MessageName="HelloWorldWithFirstName")]
public string HelloWorld(string FirstName) {
   return "Witaj, " + FirstName;
}
